home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / TXT / CHANGE.TXT < prev    next >
Text File  |  1997-03-31  |  1KB  |  26 lines

  1. This is a Standard C Library...  but here are the changes from Standard C...
  2.  
  3. time() has been renamed to _time() to avoid name conflicts
  4.  
  5. atol() and atoi() are replaced with str2num()
  6.           #defines are placed in qlib.h if you still use the old names
  7.  
  8. ltoa() and itoa() are replaced with num2strs()
  9.           These are avail but simply call num2strs()
  10. utoa() is num2str()
  11.           Again it is avail but it simply calls num2str()
  12.           There are many versions of num2strs():
  13.             each following this form: num2str[c,s,sc] ();
  14.               c=capital letters (if radix is over 10)
  15.               s=signed (ltoa and itoa)
  16.               sc=signed and capital letters
  17.               Default is unsigned
  18.             NOTE: leading zeros ARE removed (v2.00+)
  19.  
  20. open() does not need the stupid attr field when creating files and will
  21.   make the new files writtable (unlike C which needed the dumb S_IWRITE flag)
  22.  
  23. fprintf() and vfprintf() use file handles NOT streams.  The stdout,err
  24.  etc. are simply #defines in the stdio.h file for those handles given by DOS.
  25.  
  26.